home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InfoMagic Internet Tools 1993 July
/
Internet Tools.iso
/
RockRidge
/
mail
/
mmdf
/
mmdf-IIb.43
/
lib
/
util
/
rplstr.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-02-01
|
190 b
|
13 lines
/* replace an alloc'd string with a new one */
rplstr (oldstr, newstr)
char **oldstr,
*newstr;
{
if (*oldstr != 0)
free (*oldstr);
*oldstr = newstr;
}